home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr01
/
jock.zip
/
TOTDEM11.ZIP
/
DEMIN1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
336b
|
17 lines
Program DemoInputOne;
{DEMIN1}
Uses CRT,
totINPUT;
begin
Clrscr;
Writeln('Press any key or mouse button combination. (Esc to quit)');
Key.SetDouble(true);
repeat
Key.GetInput;
GotoXY(1,2);
Write('You press key: ',Key.LastKey,' ');
until Key.LastKey = 27;
end.